home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer Power Tools
/
Programmer Power Tools.iso
/
c
/
jazlib.arc
/
WINDOW.C
< prev
next >
Wrap
Text File
|
1986-01-22
|
581b
|
21 lines
/*
┌────────────────────────────────────────────────────────────────────────────┐
│ Title : window │
│ Purpose : Set global window attributes │
│ │
│ Written by Jack Zucker - 75766,1336 301-794-5950 on 1/22/86 │
└────────────────────────────────────────────────────────────────────────────┘
*/
window( frow1 , fcol1 , frow2 , fcol2 )
int frow1,fcol1,frow2,fcol2;
{
extern _row1,_col1,_row2,_col2,g_row,g_col;
_row1 = frow1;
_col1 = fcol1;
_row2 = frow2;
_col2 = fcol2;
g_row = frow1;
g_col = fcol1;
}